/* Scan-to-Pay Modal Overlay */
.pay-scan-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

/* Modal Content Box */
.pay-scan-modal-content {
    background: transparent;
    width: 900px;
    height: 570px;
    display: flex;
    gap: 0;
}

/* Sidebar Styling (Consistent) */
.pay-scan-modal-content .account-sidebar {
    width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px 0 8px 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Right Column */
.pay-scan-modal-content .account-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Card (Aligned with 60px) */
.pay-scan-modal-content .account-header-card {
    background: #fff;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 8px 8px 0;
    padding: 14px 40px 14px 60px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    box-shadow: 10px 5px 20px rgba(0, 0, 0, 0.1);
}

/* Main Panel */
.scan-panel {
    flex: 1;
    padding: 30px 40px 30px 60px;
    /* Aligned left padding */
    margin-left: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.scan-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
}

.qr-code-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.qr-code-box {
    width: 200px;
    height: 200px;
    border: 1px solid #333;
    background: #fff;
    margin-bottom: 40px;
}

.confirm-pay-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 36px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 3px;
}

.confirm-pay-btn:hover {
    background: #000;
}